home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Views / ViewCell / CellUpdater.h < prev    next >
Text File  |  2000-06-23  |  357b  |  24 lines

  1. // CellUpdater.h
  2.  
  3. #ifndef CellUpdater_h
  4. #define CellUpdater_h
  5.  
  6. #ifndef CellVisitor_h
  7. #include "CellVisitor.h"
  8. #endif
  9.  
  10. class RegionObject;
  11.  
  12. class CellUpdater: public CellVisitor
  13.   {
  14.     private:
  15.         const RegionObject& toUpdate;
  16.         
  17.     public:
  18.         explicit CellUpdater( const RegionObject& toUpdate );
  19.         
  20.         virtual void Visit( ViewCell&, const Canvas& );
  21.   };
  22.  
  23. #endif
  24.